home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / PROGTOOL / FGL304C.ZIP;1 / EXC.ARJ / FGDOC / EXAMPLES / C / 05-02.C < prev    next >
Encoding:
C/C++ Source or Header  |  1994-01-24  |  250 b   |  20 lines

  1. #include <fastgraf.h>
  2.  
  3. void main(void);
  4.  
  5. void main()
  6. {
  7.    int mode;
  8.  
  9.    mode = fg_getmode();
  10.    fg_setmode(6);
  11.  
  12.    fg_palette(0,1);
  13.    fg_setcolor(1);
  14.    fg_text("Hello",5);
  15.    fg_waitkey();
  16.  
  17.    fg_setmode(mode);
  18.    fg_reset();
  19. }
  20.